home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / langs / sozo2 / scsrc20.lzh / LD.LZH / BCOPY.S next >
Encoding:
Text File  |  1991-02-22  |  171 b   |  17 lines

  1.     .text
  2.     .globl    _bcopy
  3. _bcopy:
  4.  
  5.     move.l    4(sp),a0    ;from
  6.     move.l    8(sp),a1    ;to
  7.     move.w    12(sp),d0    ;count
  8.     bra    L2
  9. L1:
  10.     move.b    (a0)+,(a1)+
  11. L2:
  12.     dbf    d0,L1
  13.  
  14.     rts
  15.  
  16.  
  17.